home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / smailsrc.zip / SMAIL.ZIP / UUXDUMMY.C < prev   
Text File  |  1990-05-05  |  645b  |  26 lines

  1. /*
  2.  *      uuxdummy.c: Dummy version of uux
  3.  *
  4.  *      Stephen Trier
  5.  *      March 27, 1990
  6.  *
  7.  *      This program, trivial as it may be, is in the public domain.
  8.  */
  9.  
  10. /*
  11.  *      Compile this version and use it as a replacement for the
  12.  *      normal uux if you want all outgoing mail rejected.  You
  13.  *      should do this if one of the following cases applies:
  14.  *          1) You're feeling unfriendly
  15.  *          2) You are testing the mailer
  16.  */
  17.  
  18. #include <stdio.h>
  19.  
  20. main()
  21. {
  22.     fprintf(stderr, "Mail forwarding not permitted.\n");
  23.     fprintf(stderr, "Please hang up and try your call again.\n");
  24.     return 1;
  25. }
  26.